home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Sample Code / PartMaker 4.3 / App.protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-12  |  1.1 KB  |  57 lines  |  [TEXT/MPS ]

  1. #ifndef __APPPROTOS__
  2. #define __APPPROTOS__
  3.  
  4.  
  5. #ifndef __DLPROTOS__
  6. #include "DTS.Lib.protos.h"
  7. #endif
  8.  
  9.  
  10. /* NOTE:  These prototypes are in a single file as they are the standard functions
  11. **        functions for this application shell.  You may wish to have separate
  12. **        files for the prototypes of functions you add to the shell.  They are all
  13. **        here in a single file for simplicity. */
  14.  
  15.  
  16.  
  17. /************** DoEvent.c **************/
  18.  
  19. void            DoEvent(EventRecord *event);
  20.  
  21.  
  22.  
  23. /************** EventLoop.c **************/
  24.  
  25. void            EventLoop(void);
  26.  
  27.  
  28.  
  29. /************** FindEverything.c **************/
  30.  
  31. pascal    OSErr    FindEverything(short vRefNum, long dirID,
  32.                                FSSpecPtr matches, long reqMatchCount,
  33.                                long *actMatchCount, Boolean newSearch);
  34.  
  35.  
  36.  
  37. /************** IdleTasks.c **************/
  38.  
  39. void            DoIdleTasks(EventRecord *event);
  40. OSErr            PrepDocResFile(FileRecHndl frHndl, short *oldRes, char perm);
  41.  
  42.  
  43.  
  44. /************** Menu.c **************/
  45.  
  46. Boolean            DoAdjustFileMenu(WindowPtr window);
  47. Boolean            DoAdjustEditMenu(WindowPtr window);
  48.  
  49.  
  50.  
  51. /************** Window.c **************/
  52.  
  53. void            DoFolders(void);
  54.  
  55.  
  56. #endif
  57.